home *** CD-ROM | disk | FTP | other *** search
- Path: news.compuserve.com!newsmaster
- From: 73700.776@compuserve.com (Walter C. Riley)
- Newsgroups: comp.lang.c++
- Subject: Re: Please Explain this manipulator behavior
- Date: Tue, 09 Jan 1996 23:53:47 GMT
- Organization: CompuServe Incorporated
- Message-ID: <4cuvas$g3l@dub-news-svc-6.compuserve.com>
- References: <30EEBF72.4DDD565A@federal.unisys.com>
- NNTP-Posting-Host: dd62-172.compuserve.com
- X-Newsreader: Forte Free Agent 1.0.82
-
- Bill Kaelin <kaelin@federal.unisys.com> wrote:
-
- >>much cut
- >Is this the appropriate behavior for C++?? If this is true, how can one
- >inherit from ostream and still output hexadecimal values?
-
-
- Interesting -- can't help with the behavior - but you can
-
- cout << setiosflags(ios::hex)
- instead of
- cout << hex
-
- as a workaround.
-
- Good luck,
- Walt
-
-
-